HTML is a kind of computer programming at it's simplest. You are effectively "programming" a webpage to display or "format" information in whatever way you want for transmission over the internet.
HTML is a "computer code" that is written into a text file, and interpreted by a "Web Browser" to put the information back together.
You can download their "test web" files to your H: drive and and see how they work
Follow the instructions below and try starting up a new webpage on your computer
HOW TO START A NEW WEBPAGE:
Create an HTML folder on your server
RIGHT MOUSECLICK in that folder and create a new "text document"
Rename the file to "index.htm"
Double click the file, and it opens up in your INTERNET EXPLORER BROWSER
webpages-setup.gif
In IE, right mouseclick and VIEW SOURCE - the file will open up in NOTEPAD
Position the IE and NOTEPAD windows so you can see BOTH on the screen. RIGHT CLICK in the TASKBAR at the bottom of the screen, and choose "TILE VERTICALLY".
Notepad will be your webpage EDITOR, while IE is your webpage BROWSER
You have to click REFRESH (or hit F5) in IE to view your changes in the webpage.
Anytime you edit your webpages, set up your windows as in step 6 so that editing goes smoothly.
A BASIC EMPTY WEBPAGE:
<HTML>
<HEAD>
<TITLE>Title Text Goes Here</TITLE>
</HEAD>
<BODY>
Body Text Goes Here
</BODY>
</HTML>
DESIGN SOFTWARE - HTML
Need more help? Use an online tutorial: www.w3schools.com
HTML is a kind of computer programming at it's simplest. You are effectively "programming" a webpage to display or "format" information in whatever way you want for transmission over the internet.
HTML is a "computer code" that is written into a text file, and interpreted by a "Web Browser" to put the information back together.
To get started:
HOW TO START A NEW WEBPAGE:
Anytime you edit your webpages, set up your windows as in step 6 so that editing goes smoothly.
A BASIC EMPTY WEBPAGE: